home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1991 …esperately Seeking Seven / Desperately Seeking Seven.2mg / Dev.CD.8 / Essentials / Tools / DTS.Samples / SC01Shell / Asm.Shell / full.Build < prev    next >
Encoding:
Text File  |  1990-05-21  |  643 b   |  30 lines  |  [04] ASCII Text (0x0000)

  1. *
  2. *   This exec file does a complete build of
  3. *   the sample application: Shell
  4. *
  5. *   File:         Full.Build
  6. *   Target:       Shell
  7. *   Sources:      Shell.aii
  8. *                 ../Rez.Shell/Shell.rez
  9. *
  10. *   Copyright Apple Computer, Inc. 1988-1990
  11. *   All rights reserved.
  12. *
  13.  
  14. echo "Assembling Shell.aii"
  15. assemble Shell.aii keep=Shell
  16.  
  17. echo "Compiling Shell.rez"
  18. copy -c ../rez.shell/shell.rez shell.rez
  19. compile shell.rez keep=Shell.rfork
  20. delete shell.rez
  21.  
  22. echo "Linking..."
  23. linkiigs Shell.root Shell.a -o Shell.dfork
  24.  
  25. echo "Duplicating data and resource forks..."
  26. duplicate -d Shell.dfork Shell
  27. duplicate -r Shell.rfork Shell
  28.  
  29. echo "Done!"
  30.